home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / uc31.zip / PLAYNOTE.SCR < prev    next >
Text File  |  1992-12-28  |  98b  |  8 lines

  1. ; Play musical notes
  2. i=10
  3. while (i < 60)
  4.   soundplaynote(i,16,1)
  5.   i = i + 5
  6. endwhile
  7. exit
  8.